home *** CD-ROM | disk | FTP | other *** search
/ Interplay's Learn to Program Basic (Review Copy) / Learn to Program Basic Review Copy (Interplay)(June 23, 1998).ISO / pc / ltpbasic / refxmpl / restore.bas < prev    next >
BASIC Source File  |  1998-04-07  |  161b  |  14 lines

  1. Data Lions, Tigers, Bears, Oh My!
  2.  
  3. Rem This will read the same
  4. Rem set of data over and over
  5. CLS
  6. While TRUE
  7. For d = 1 to 4
  8. Read A$
  9. Print A$
  10. Next d
  11. Restore
  12. Wend
  13.  
  14.